home *** CD-ROM | disk | FTP | other *** search
/ Mesolore / Mesolore - Disc 1.iso / pc / data / Buttons.cst / 00163_Script_quit < prev    next >
Text File  |  2001-04-13  |  487b  |  28 lines

  1. Global gBalloonTimer
  2.  
  3. on mousedown
  4.   btnDown
  5. end
  6. on mouseUp
  7.   btnUp
  8.   goto "end", "switcher"
  9. end
  10. on MouseEnter
  11.   gBalloonTimer = the ticks
  12.  
  13. end
  14. on MouseWithin
  15.   if the ticks > gBalloonTimer +70 then
  16.       puppetSprite 119, true
  17.   set the member of sprite 119 = "exit_balloon"
  18.   set the loc of sprite 119 = point(455, 41)
  19.   updatestage
  20.   end if
  21.   
  22. end
  23.  
  24. on MouseLeave
  25.   puppetSprite 119, false
  26. --  set the member of sprite 115 = "empty_balloon"
  27.   updatestage
  28. end